home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 3 NO 8.st / SAUCERS.ARC / SAUCERS.S < prev   
Encoding:
Text File  |  1988-11-21  |  48.6 KB  |  1,062 lines

  1. * * * * * * * * * * * * * * * * * * * * *
  2. *           ASSEMBLED SAUCERS           *
  3. *                                       *
  4. *      A Motion & Sound Experiment      *
  5. *           By Walt Wakefield           *
  6. *                                       *
  7. * Copyright 1988 by Antic Publishing    *
  8. *                                       *
  9. * * * * * * * * * * * * * * * * * * * * *
  10.                 text
  11. * * * * * * * * * * * * * * * * * * * * *
  12. *            SYSTEM  EQUATES            *
  13. * * * * * * * * * * * * * * * * * * * * *
  14. nvbls           equ     $454                    # of vbi routines
  15. vblqueue        equ     $456                    pointer to vbi list
  16. conterm         equ     $484                    keyboard attributes
  17. color0          equ     $ff8240                 palette address
  18. * * * * * * * * * * * * * * * * * * * * *
  19. *    DISPLACEMENTS  TO  OBJECT  DATA    *
  20. * * * * * * * * * * * * * * * * * * * * *
  21. xcor            equ     0                       horizontal position
  22. ycor            equ     12                      vertical position
  23. xgoal           equ     24                      horizontal goal
  24. ygoal           equ     32                      vertical goal
  25. lrfac           equ     40                      left-right move factor
  26. offbuf          equ     48                      object buffer offset
  27. offbg           equ     60                      background buffer offset
  28. flag            equ     68                      goal-related status flag
  29. * * * * * * * * * * * * * * * * * * * * *
  30. *             INITIALIZATION            *
  31. * * * * * * * * * * * * * * * * * * * * *
  32.                 clr.l   -(a7)                   Enter supervisor mode
  33.                 move.w  #32,-(a7)
  34.                 trap    #1
  35.                 addq.l  #6,a7
  36.                 dc.w    $a00a                   Hide mouse
  37.                 move.w  #4,-(a7)                Get current resolution
  38.                 trap    #14
  39.                 addq.l  #2,a7
  40.                 cmpi.w  #2,d0                   Monochrome?
  41.                 bne     svrez
  42.                 move.l  #nmtxt,-(a7)            If so, display
  43.                 move.w  #9,-(a7)                  message and
  44.                 trap    #1                        terminate
  45.                 addq.l  #6,a7                     on keypress
  46.                 move.w  #2,-(a7)
  47.                 move.w  #2,-(a7)
  48.                 trap    #13
  49.                 addq.l  #4,a7
  50.                 clr.w   (a7)
  51.                 trap    #1
  52. svrez           move.w  d0,rez                  Save resolution
  53.                 clr.w   -(a7)                   Set low resolution
  54.                 move.l  #-1,-(a7)
  55.                 move.l  #-1,-(a7)
  56.                 move.w  #5,-(a7)
  57.                 trap    #14
  58.                 adda.l  #12,a7
  59.                 move.w  #2,-(a7)                Get screen address
  60.                 trap    #14
  61.                 addq.l  #2,a7
  62.                 move.l  d0,dscrn                Save screen address
  63.                 move.l  d0,vscrn                Set visible screen
  64.                 sub.l   #$8000,d0
  65.                 move.l  d0,hscrn                Set hidden screen
  66.                 subq.l  #8,d0
  67.                 movea.l d0,a7                   Set stack pointer
  68.                 lea     color0,a0               Save current colors
  69.                 lea     dcolors,a1
  70.                 moveq   #7,d0
  71. svclrs          move.l  (a0)+,(a1)+
  72.                 dbf     d0,svclrs
  73.                 move.l  #colors,-(a7)           Install new colors
  74.                 move.w  #6,-(a7)
  75.                 trap    #14
  76.                 addq.l  #6,a7
  77. * * * * * * * * * * * * * * * * * * * * *
  78. *      LOAD GRAPHIC DATA FROM DISK      *
  79. * * * * * * * * * * * * * * * * * * * * *
  80.                 clr.w   -(a7)                   Open data file
  81.                 move.l  #fname,-(a7)
  82.                 move.w  #$3d,-(a7)
  83.                 trap    #1
  84.                 addq.l  #8,a7
  85.                 move.w  d0,handle               Save file handle
  86.                 move.l  hscrn,d0                Transfer lower portion
  87.                 add.l   #127*160,d0               of picture to hidden
  88.                 move.l  d0,-(a7)                  screen, starting at
  89.                 move.l  #11680,-(a7)              line 127
  90.                 move.w  handle,-(a7)
  91.                 move.w  #$3f,-(a7)
  92.                 trap    #1
  93.                 adda.l  #12,a7
  94.                 move.l  #buffer,-(a7)           Transfer foreground
  95.                 move.l  #16448,-(a7)              features (hill and
  96.                 move.w  handle,-(a7)              spire) to buffer
  97.                 move.w  #$3f,-(a7)
  98.                 trap    #1
  99.                 adda.l  #12,a7
  100.                 move.w  handle,-(a7)            Close file
  101.                 move.w  #$3e,-(a7)
  102.                 trap    #1
  103.                 addq.l  #4,a7
  104. * * * * * * * * * * * * * * * * * * * * *
  105. *       SPRINKLE STARS ACROSS SKY       *
  106. * * * * * * * * * * * * * * * * * * * * *
  107.                 moveq   #2,d3                   Outer loop counter
  108. stars           moveq   #13,d4                  Loop count/shift factor
  109. stars0          bsr     random                  Select horizontal
  110.                 divu    #20,d0                    range (block 0-19)
  111.                 swap    d0
  112.                 mulu    #8,d0
  113.                 movea.l d0,a3
  114.                 bsr     random                  Select vertical
  115.                 divu    #140,d0                   position (line 0-139)
  116.                 swap    d0
  117.                 mulu    #160,d0
  118.                 adda.l  d0,a3
  119.                 adda.l  hscrn,a3                Add screen address
  120.                 move.w  #$4000,d5               Take a pixel,
  121.                 lsr.w   d4,d5                     shift it and
  122.                 bsr     stsub                     send it to the screen
  123.                 cmp.w   #1,d4                   On inner loop count
  124.                 bgt     stars1                    of 0 or 1,
  125.                 adda.l  #160,a3                   make a larger star
  126.                 move.w  #$e000,d5
  127.                 lsr.w   d4,d5
  128.                 bsr     stsub
  129.                 adda.l  #160,a3
  130.                 move.w  #$4000,d5
  131.                 lsr.w   d4,d5
  132.                 bsr     stsub
  133. stars1          dbf     d4,stars0
  134.                 dbf     d3,stars
  135. * * * * * * * * * * * * * * * * * * * * *
  136. *       PLACE MOON AT UPPER LEFT        *
  137. * * * * * * * * * * * * * * * * * * * * *
  138.                 bsr     random                  Select vertical
  139.                 divu    #46,d0                    position (line 0-45)
  140.                 swap    d0
  141.                 mulu    #160,d0
  142.                 movea.l d0,a3
  143.                 bsr     random                  Select horizontal
  144.                 divu    #5,d0                     range (block 1-5)
  145.                 swap    d0
  146.                 addq.w  #1,d0
  147.                 mulu    #8,d0
  148.                 adda.l  d0,a3
  149.                 adda.l  hscrn,a3                Add screen address
  150.                 lea     moon,a0                 Pointer to moon data
  151.                 moveq   #6,d0                   Line counter
  152. luna            moveq   #3,d1                   Plane counter
  153. luna0           move.w  (a0)+,(a3)+             Transfer data
  154.                 dbf     d1,luna0
  155.                 adda.l  #152,a3                 Next scan line
  156.                 dbf     d0,luna
  157. * * * * * * * * * * * * * * * * * * * * *
  158. *   TRANSFER HILL AND SPIRE TO SCREEN   *
  159. * * * * * * * * * * * * * * * * * * * * *
  160.                 lea     buffer+1728,a0          Pointer to hill data
  161.                 movea.l hscrn,a1                Get screen address
  162.                 adda.l  #134*160,a1             Advance to line 134
  163.                 moveq   #1,d0                   Counter (2 objects)
  164.                 moveq   #50,d1                  Line counter (hill)
  165. peaks           moveq   #9,d2                   Block counter
  166. peaks0          move.w  (a0),d3                 Build 4-plane mask
  167.                 or.w    2(a0),d3
  168.                 or.w    4(a0),d3
  169.                 or.w    6(a0),d3
  170.                 not.w   d3
  171.                 moveq   #3,d4                   Plane counter
  172. peaks1          move.w  (a0)+,d5                Get graphic data
  173.                 and.w   d3,(a1)                 Clear spot with mask
  174.                 or.w    d5,(a1)+                Place graphic data
  175.                 dbf     d4,peaks1
  176.                 dbf     d2,peaks0
  177.                 adda.l  #80,a1                  Next scan line
  178.                 dbf     d1,peaks
  179.                 movea.l hscrn,a1                Get screen address
  180.                 adda.l  #52*160+80,a1           Advance 52 1/2 lines
  181.                 move.w  #132,d1                 Line count (spire)
  182.                 dbf     d0,peaks
  183. * * * * * * * * * * * * * * * * * * * * *
  184. *           START  THE  MUSIC           *
  185. * * * * * * * * * * * * * * * * * * * * *
  186.                 bclr    #0,conterm              Kill key click
  187.                 move.l  #table,-(a7)            Find gateway to
  188.                 move.w  #32,-(a7)                 Sound City
  189.                 trap    #14
  190.                 addq.l  #6,a7
  191.                 movea.w 2(a0),a1
  192.                 move.l  a1,sound                Save address
  193.                 move.l  #tune,marker            Pointer to data
  194.                 move.l  #table,pointer          Sound table pointer
  195.                 move.b  #1,count                Music timer
  196.                 movea.l vblqueue,a0             Pointer to vbi list
  197.                 move.w  nvbls,d0                Set vbi counter
  198.                 subq.w  #1,d0
  199. sloop           tst.l   (a0)+                   Find blank spot
  200.                 beq     open                      in list
  201.                 dbf     d0,sloop
  202.                 bra     exit
  203. open            subq.l  #4,a0                   Back up
  204.                 move.l  a0,vbvec                Save vector address
  205.                 move.l  #music,(a0)             Put new vbi in list
  206. * * * * * * * * * * * * * * * * * * * * *
  207. *          SET OBJECT POINTERS          *
  208. * * * * * * * * * * * * * * * * * * * * *
  209.                 lea     xc,a3                   Object data
  210.                 lea     order,a4                Rear-to-front order
  211. * * * * * * * * * * * * * * * * * * * * *
  212. *      PRELIMINARY BACKGROUND SAVE      *
  213. * * * * * * * * * * * * * * * * * * * * *
  214.                 clr.w   d7                      Object index
  215. prep            bsr     sbgsub                  Save background
  216.                 addq.w  #2,d7                   Next object
  217.                 cmp.w   #8,d7                   Any more saucers?
  218.                 blt     prep
  219. * * * * * * * * * * * * * * * * * * * * *
  220. *           M A I N   L O O P           *
  221. * * * * * * * * * * * * * * * * * * * * *
  222. *         SET GOALS FOR SAUCERS         *
  223. * * * * * * * * * * * * * * * * * * * * *
  224. begin           clr.w   d7                      Reset object index
  225. loop            cmpi.b  #3,flag(a3,d7)          Current goal reached?
  226.                 bne     nxtsg                     If not, skip
  227.                 bsr     random                  Select horizontal
  228.                 divu    #273,d0                   goal (0-272)
  229.                 swap    d0
  230.                 move.w  d0,xgoal(a3,d7)
  231.                 bsr     random                  Select vertical
  232.                 divu    #168,d0                   goal (0-167)
  233.                 swap    d0
  234.                 move.w  d0,ygoal(a3,d7)
  235.                 clr.w   flag(a3,d7)             Clear flag
  236.                 bsr     random                  Select horizontal
  237.                 and.w   #1,d0                     speed (1 or 2)
  238.                 addq.w  #1,d0
  239.                 move.w  d0,lrfac(a3,d7)
  240. nxtsg           addq.w  #2,d7                   Next saucer
  241.                 cmp.w   #8,d7                   Any more?
  242.                 blt     loop
  243. * * * * * * * * * * * * * * * * * * * * *
  244. *          RESTORE  BACKGROUND          *
  245. * * * * * * * * * * * * * * * * * * * * *
  246.                 moveq   #10,d6                  Nearest object
  247. rstbg           move.w  $0(a4,d6),d7            Get object index
  248.                 cmp.w   #8,d7                   Hill or spire?
  249.                 bge     nxtrb                     If so, skip
  250.                 bsr     fndpos                  Set screen pointer
  251.                 lea     bgbuf,a1                Set buffer pointer
  252.                 clr.l   d2
  253.                 move.w  offbg(a3,d7),d2
  254.                 adda.l  d2,a1
  255.                 moveq   #17,d2                  Line counter
  256. rstlin          moveq   #7,d3                   Long word counter
  257. rstwrd          move.l  (a1)+,(a0)+             Transfer data
  258.                 dbf     d3,rstwrd
  259.                 adda.l  #128,a0                 Next scan line
  260.                 dbf     d2,rstlin
  261. nxtrb           subq.w  #2,d6                   Next object
  262.                 bpl     rstbg
  263. * * * * * * * * * * * * * * * * * * * * *
  264. *            SHUFFLE SAUCERS            *
  265. * * * * * * * * * * * * * * * * * * * * *
  266.                 moveq   #6,d7                   Saucer index
  267. shuf            bsr     random                  Take random number
  268.                 and.w   #31,d0                    from 0 to 31
  269.                 cmp.w   #1,d0                   Try moving saucer
  270.                 bgt     nxtshf                    lower (nearer) on 0,
  271.                 tst.w   d0                        higher (away) on 1,
  272.                 beq     lower                     otherwise not at all
  273. higher          bsr     hunt                    Find relative position
  274.                 addq.w  #2,d5                   Next higher position?
  275.                 cmp.w   #12,d5                  If none, try lower
  276.                 bge     lower                     instead
  277.                 bra     shft                    
  278. lower           bsr     hunt                    Find relative position
  279.                 subq.w  #2,d5                   Next lower position?
  280.                 bmi     higher                  If none, try higher
  281. shft            move.w  0(a4,d5),d3             What's there,
  282.                 cmp.w   #8,d3                     spire (8), hill (10)
  283.                 beq     eight                     or saucer?
  284.                 bgt     ten
  285. dish            move.w  ycor(a3,d3),d0          Abort position swap
  286.                 sub.w   ycor(a3,d7),d0            if objects overlap
  287.                 bmi     subzy
  288.                 cmp.w   #18,d0
  289.                 bge     doshft
  290. examx           move.w  xcor(a3,d3),d0
  291.                 sub.w   xcor(a3,d7),d0
  292.                 bmi     subzx
  293.                 cmp.w   #48,d0
  294.                 bge     doshft
  295.                 bra     nxtshf
  296. subzy           cmp.w   #$ffef,d0
  297.                 blt     doshft
  298.                 bra     examx
  299. subzx           cmp.w   #$ffd1,d0
  300.                 blt     doshft
  301.                 bra     nxtshf
  302. eight           move.w  ycor(a3,d7),d0
  303.                 cmp.w   #35,d0
  304.                 blt     doshft
  305.                 cmp.w   #117,d0
  306.                 blt     sprlvl
  307.                 move.w  xcor(a3,d7),d0
  308.                 cmp.w   #113,d0
  309.                 blt     doshft
  310.                 bra     nxtshf
  311. sprlvl          move.w  xcor(a3,d7),d0
  312.                 cmp.w   #156,d0
  313.                 blt     doshft
  314.                 cmp.w   #225,d0
  315.                 bge     doshft
  316.                 bra     nxtshf
  317. ten             move.w  ycor(a3,d7),d0
  318.                 cmp.w   #117,d0
  319.                 blt     doshft
  320.                 move.w  xcor(a3,d7),d0
  321.                 cmp.w   #160,d0
  322.                 blt     nxtshf
  323. doshft          move.w  0(a4,d5),d0             If no overlap, swap
  324.                 move.w  0(a4,d4),0(a4,d5)
  325.                 move.w  d0,0(a4,d4)
  326. nxtshf          subq.w  #2,d7                   Next object
  327.                 bpl     shuf
  328. * * * * * * * * * * * * * * * * * * * * *
  329. *             MOVE  SAUCERS             *
  330. * * * * * * * * * * * * * * * * * * * * *
  331.                 clr.w   d6                      Most distant object
  332. trav            move.w  $0(a4,d6),d7            Get object index
  333.                 cmp.w   #8,d7                   Spire or hill?
  334.                 bge     proceed                   It won't budge
  335.                 move.w  xcor(a3,d7),d0          Horizontal position
  336.                 sub.w   xgoal(a3,d7),d0         Subtract goal
  337.                 beq     onx                     Goal achieved?
  338.                 bmi     right                   If not, move right
  339. left            cmp.w   lrfac(a3,d7),d0           or left
  340.                 bge     lrfok
  341.                 sub.w   d0,xcor(a3,d7)
  342.                 bra     cheky
  343. lrfok           move.w  lrfac(a3,d7),d0
  344.                 sub.w   d0,xcor(a3,d7)
  345.                 bra     cheky
  346. right           move.w  xgoal(a3,d7),d0
  347.                 sub.w   xcor(a3,d7),d0
  348.                 cmp.w   lrfac(a3,d7),d0
  349.                 bge     rlfok
  350.                 add.w   d0,xcor(a3,d7)
  351.                 bra     cheky
  352. rlfok           move.w  lrfac(a3,d7),d0
  353.                 add.w   d0,xcor(a3,d7)
  354.                 bra     cheky
  355. onx             bset    #0,flag(a3,d7)          At horizontal goal
  356. cheky           move.w  ycor(a3,d7),d0          Vertical position
  357.                 sub.w   ygoal(a3,d7),d0         Subtract goal
  358.                 beq     ony                     Goal achieved?
  359.                 bmi     down                      If not, move down
  360. up              subq.w  #1,ycor(a3,d7)            or up
  361.                 bra     savbg
  362. down            addq.w  #1,ycor(a3,d7)
  363.                 bra     savbg
  364. ony             bset    #1,flag(a3,d7)          At vertical goal
  365. savbg           bsr     sbgsub                  Save background
  366. drfig           bsr     dfrtn                   Redraw saucer
  367.                 moveq   #10,d5                  Find relative position
  368. fnd8            cmpi.w  #8,0(a4,d5)               of spire and redraw
  369.                 beq     outf8                     if nearer than saucer
  370.                 subq.w  #2,d5
  371.                 bpl     fnd8
  372. outf8           cmp.w   d5,d6
  373.                 bgt     seek10
  374.                 bsr     spire
  375. seek10          moveq   #10,d5                  Find relative position
  376. fnd10           cmpi.w  #10,0(a4,d5)              of hill and redraw
  377.                 beq     outf10                    if nearer than saucer
  378.                 subq.w  #2,d5
  379.                 bpl     fnd10
  380. outf10          cmp.w   d5,d6
  381.                 bgt     proceed
  382.                 bsr     hill
  383. proceed         addq.w  #2,d6                   Next object
  384.                 cmp.w   #12,d6
  385.                 blt     trav
  386. * * * * * * * * * * * * * * * * * * * * *
  387. *           CHECK ESCAPE KEY            *
  388. * * * * * * * * * * * * * * * * * * * * *
  389. chkey           move.w  #2,-(a7)
  390.                 move.w  #1,-(a7)
  391.                 trap    #13
  392.                 addq.l  #4,a7
  393.                 tst.w   d0                      Key pressed?
  394.                 beq     chgscr                    If not, move on
  395.                 move.w  #2,-(a7)
  396.                 move.w  #2,-(a7)
  397.                 trap    #13
  398.                 addq.l  #4,a7
  399.                 cmp.w   #27,d0                  Escape key?
  400.                 beq     exit                      If so, quit
  401. * * * * * * * * * * * * * * * * * * * * *
  402. *        DISPLAY REVISED PICTURE        *
  403. * * * * * * * * * * * * * * * * * * * * *
  404. chgscr          bsr     swpscr                  Swap screens
  405.                 bsr     update                  Update hidden screen
  406. * * * * * * * * * * * * * * * * * * * * *
  407. *         ROTATE SAUCER LIGHTS          *
  408. * * * * * * * * * * * * * * * * * * * * *
  409.                 move.w  color0+28,d0            Rotate 3 colors
  410.                 move.w  color0+26,color0+28
  411.                 move.w  color0+24,color0+26
  412.                 move.w  d0,color0+24
  413. * * * * * * * * * * * * * * * * * * * * *
  414. *             END MAIN LOOP             *
  415. * * * * * * * * * * * * * * * * * * * * *
  416.                 bra     begin
  417. * * * * * * * * * * * * * * * * * * * * *
  418. *              SUBROUTINES              *
  419. * * * * * * * * * * * * * * * * * * * * *
  420. *         PLACE STAR ON SCREEN          *
  421. * * * * * * * * * * * * * * * * * * * * *
  422. stsub           tst.l   (a3)                    Is area clear?
  423.                 bne     stsub0                    If not, skip it
  424.                 tst.l   4(a3)
  425.                 bne     stsub0
  426.                 move.w  d5,(a3)                 Transfer image
  427.                 move.w  d5,2(a3)                  to 4 planes
  428.                 move.w  d5,4(a3)
  429.                 move.w  d5,6(a3)
  430. stsub0          rts
  431. * * * * * * * * * * * * * * * * * * * * *
  432. *        PLACE SAUCER ON SCREEN         *
  433. * * * * * * * * * * * * * * * * * * * * *
  434. dfrtn           bsr     fndpos                  Set screen pointer
  435.                 lea     buffer,a1               Set buffer pointer
  436.                 clr.l   d2
  437.                 move.w  offbuf(a3,d7),d2
  438.                 adda.l  d2,a1
  439.                 moveq   #17,d2                  Line counter
  440. dflin           moveq   #2,d3                   Block counter
  441. dfblk           move.l  (a1),d4                 Build mask
  442.                 or.l    2(a1),d4
  443.                 or.l    4(a1),d4
  444.                 or.l    6(a1),d4
  445.                 clr.w   d4
  446.                 lsr.l   d0,d4                   Apply shift factor
  447.                 not.l   d4                      
  448.                 and.w   d4,8(a0)                Clear spot, next block
  449.                 and.w   d4,10(a0)
  450.                 and.w   d4,12(a0)
  451.                 and.w   d4,14(a0)
  452.                 swap    d4
  453.                 and.w   d4,(a0)                 Clear spot, this block
  454.                 and.w   d4,2(a0)
  455.                 and.w   d4,4(a0)
  456.                 and.w   d4,6(a0)
  457.                 moveq   #3,d5                   Plane counter
  458. dfwrd           move.l  (a1),d4                 Get data
  459.                 clr.w   d4
  460.                 lsr.l   d0,d4                   Apply shift factor
  461.                 or.w    d4,8(a0)                Place data, next block
  462.                 swap    d4
  463.                 or.w    d4,(a0)+                Place data, this block
  464.                 addq.l  #2,a1                   Advance data pointer
  465.                 dbf     d5,dfwrd
  466.                 dbf     d3,dfblk
  467.                 adda.l  #136,a0                 Next scan line
  468.                 dbf     d2,dflin
  469.                 rts
  470. * * * * * * * * * * * * * * * * * * * * *
  471. *        REPAIR DAMAGE AND EXIT         *
  472. * * * * * * * * * * * * * * * * * * * * *
  473. exit            bset    #0,conterm              Restore key click
  474.                 move.w  rez,-(a7)               Restore resolution
  475.                 move.l  dscrn,-(a7)               and screen
  476.                 move.l  #-1,-(a7)
  477.                 move.w  #5,-(a7)
  478.                 trap    #14
  479.                 adda.l  #12,a7
  480.                 move.l  #dcolors,-(a7)          Restore palette
  481.                 move.w  #6,-(a7)
  482.                 trap    #14
  483.                 addq.l  #6,a7
  484.                 movea.l vbvec,a0                Disable vertical blank
  485.                 clr.l   (a0)                      interrupt
  486.                 movea.l sound,a0                Quiet,please
  487.                 move.l  #quiet,(a0)+
  488.                 clr.b   (a0)
  489.                 clr.w   -(a7)                   Terminate program
  490.                 trap    #1
  491. * * * * * * * * * * * * * * * * * * * * *
  492. *             SWAP SCREENS              *
  493. * * * * * * * * * * * * * * * * * * * * *
  494. swpscr          move.l  hscrn,d0                Swap hidden and
  495.                 move.l  vscrn,hscrn               visible screens
  496.                 move.l  d0,vscrn
  497.                 move.w  #-1,-(a7)               Display new visible
  498.                 move.l  d0,-(a7)                  screen
  499.                 move.l  #-1,-(a7)
  500.                 move.w  #5,-(a7)
  501.                 trap    #14
  502.                 adda.l  #12,a7
  503.                 rts
  504. * * * * * * * * * * * * * * * * * * * * *
  505. *         UPDATE HIDDEN SCREEN          *
  506. * * * * * * * * * * * * * * * * * * * * *
  507. update          movea.l vscrn,a0                Set pointers
  508.                 movea.l hscrn,a1
  509.                 move.w  #1999,d0                Set counter
  510. udloop          move.l  (a0)+,(a1)+             Transfer data
  511.                 move.l  (a0)+,(a1)+
  512.                 move.l  (a0)+,(a1)+
  513.                 move.l  (a0)+,(a1)+
  514.                 dbf     d0,udloop
  515.                 rts
  516. * * * * * * * * * * * * * * * * * * * * *
  517. *          GET A RANDOM NUMBER          *
  518. * * * * * * * * * * * * * * * * * * * * *
  519. random          move.w  #17,-(a7)               Get 24-bit number
  520.                 trap    #14
  521.                 addq.l  #2,a7
  522.                 and.l   #$ffff,d0               Mask to 16 bits
  523.                 rts
  524. * * * * * * * * * * * * * * * * * * * * *
  525. *    FIND POSITION IN SCREEN MEMORY     *
  526. * * * * * * * * * * * * * * * * * * * * *
  527. fndpos          movea.l hscrn,a0                Top of hidden screen
  528.                 move.w  ycor(a3,d7),d0          Add y coordinate
  529.                 mulu    #160,d0                   times bytes per line
  530.                 adda.l  d0,a0
  531.                 clr.l   d0                      
  532.                 move.w  xcor(a3,d7),d0          Add x coordinate
  533.                 divu    #16,d0                    divided by pixels
  534.                 move.w  d0,d1                     per block multiplied
  535.                 mulu    #8,d1                     by bytes per block
  536.                 adda.l  d1,a0
  537.                 swap    d0                      Get remainder for use
  538.                 rts                               as shift factor
  539. * * * * * * * * * * * * * * * * * * * * *
  540. *       SAVE SECTION OF BACKGROUND      *
  541. * * * * * * * * * * * * * * * * * * * * *
  542. sbgsub          bsr     fndpos                  Set screen pointer
  543.                 movea.l #bgbuf,a1               Set buffer pointer
  544.                 clr.l   d0
  545.                 move.w  offbg(a3,d7),d0
  546.                 adda.l  d0,a1
  547.                 moveq   #17,d0                  Line counter
  548. sbglin          moveq   #7,d1                   Long word counter
  549. sbgwrd          move.l  (a0)+,(a1)+             Transfer data
  550.                 dbf     d1,sbgwrd
  551.                 adda.l  #128,a0                 Next scan line
  552.                 dbf     d0,sbglin
  553.                 rts
  554. * * * * * * * * * * * * * * * * * * * * *
  555. *    REDRAW SECTION OF SPIRE OR HILL    *
  556. * * * * * * * * * * * * * * * * * * * * *
  557. spire           move.w  d6,-(a7)                Save order index
  558.                 moveq   #8,d6                   Select spire
  559.                 cmpi.w  #113,xcor(a3,d7)        Abort if saucer
  560.                 blt     spret                     is clear of spire
  561.                 cmpi.w  #35,ycor(a3,d7)
  562.                 blt     spret
  563.                 move.w  xcor(a3,d7),d0          Horizontal coordinate
  564.                 cmp.w   #160,d0                   (minimum of 160,
  565.                 bge     togeo                     maximum of 256)
  566.                 move.w  #160,d0
  567. togeo           cmp.w   #257,d0
  568.                 blt     geo
  569.                 move.w  #256,d0
  570.                 bra     geo
  571. spret           move.w  (a7)+,d6                Retrieve order index
  572.                 rts
  573. hill            move.w  d6,-(a7)                Save order index
  574.                 moveq   #10,d6                  Select hill
  575.                 cmpi.w  #160,xcor(a3,d7)        Abort if saucer
  576.                 bge     spret                     is clear of hill
  577.                 cmpi.w  #117,ycor(a3,d7)
  578.                 blt     spret
  579.                 move.w  xcor(a3,d7),d0          Horizontal coordinate
  580.                 cmp.w   #97,d0                    (maximum of 96)
  581.                 blt     geo
  582.                 moveq   #96,d0
  583. geo             and.l   #$fff0,d0               Beginning of block
  584.                 move.w  ycor(a3,d7),d1          Vertical coordinate
  585.                 cmp.w   ycor(a3,d6),d1          Substitute top of hill
  586.                 bge     gwan                      or spire if greater
  587.                 move.w  ycor(a3,d6),d1            (lower on screen)
  588. gwan            movea.l hscrn,a0                Prepare screen pointer
  589.                 move.w  d1,d2
  590.                 mulu    #160,d1
  591.                 adda.l  d1,a0
  592.                 lsr.w   #1,d0
  593.                 adda.l  d0,a0
  594.                 lea     buffer,a1               Prepare buffer pointer
  595.                 cmp.w   #80,d0
  596.                 blt     adjd2
  597.                 sub.w   #80,d0
  598. adjd2           sub.w   ycor(a3,d6),d2
  599.                 clr.l   d1
  600.                 move.w  offbuf(a3,d6),d1
  601.                 adda.l  d1,a1
  602.                 mulu    #80,d2
  603.                 adda.l  d2,a1
  604.                 adda.l  d0,a1
  605.                 moveq   #17,d2                  Line counter
  606. geolin          moveq   #3,d3                   Block counter
  607. geoblk          move.w  (a1),d0                 Build mask
  608.                 or.w    2(a1),d0
  609.                 or.w    4(a1),d0
  610.                 or.w    6(a1),d0
  611.                 not.w   d0
  612.                 and.w   d0,(a0)                 Clear spot on screen
  613.                 and.w   d0,2(a0)
  614.                 and.w   d0,4(a0)
  615.                 and.w   d0,6(a0)
  616.                 moveq   #3,d4                   Plane counter
  617. geowrd          move.w  (a1)+,d0                Transfer data to screen
  618.                 or.w    d0,(a0)+
  619.                 dbf     d4,geowrd
  620.                 dbf     d3,geoblk
  621.                 adda.l  #128,a0                 Next scan line
  622.                 adda.l  #48,a1                  Next buffer line
  623.                 dbf     d2,geolin
  624.                 bra     spret
  625. * * * * * * * * * * * * * * * * * * * * *
  626. *    FIND OBJECT'S RELATIVE POSITION    *
  627. * * * * * * * * * * * * * * * * * * * * *
  628. hunt            moveq   #10,d5                  Nearest object
  629. htloop          cmp.w   $0(a4,d5),d7            The one we want?
  630.                 beq     outht                     If so, leave
  631.                 subq.w  #2,d5                   Next object
  632.                 bpl     htloop
  633. outht           move.w  d5,d4
  634.                 rts
  635. * * * * * * * * * * * * * * * * * * * * *
  636. *   VERTICAL BLANK INTERRUPT ROUTINE    *
  637. * * * * * * * * * * * * * * * * * * * * *
  638. music           movem.l d0-d0/a0-a3,-(a7)
  639.                 subq.b  #1,count                Decrement time count
  640.                 bne     music9                  Skip ahead if not 0
  641.                 movea.l marker,a0               Get music pointer
  642.                 move.b  (a0)+,d0                Read next byte
  643.                 bmi     music11                 Minus value marks end
  644.                 bne     music5                  Skip ahead on non-0
  645.                 move.b  (a0)+,d0                Get voice offset
  646.                 cmp.b   #1,d0                   First voice?
  647.                 bne     music1                    If not, try second
  648.                 clr.w   mode                    Clear mode
  649.                 clr.w   stat                    Clear status index
  650.                 move.b  (a0)+,table+17          Insert value in table
  651.                 cmpi.b  #16,table+17            16 or higher?
  652.                 blt     music0                  If not, it's a volume
  653.                 move.b  table+17,d0             If so, it's a mode #;
  654.                 sub.b   #15,d0                    convert it to a long
  655.                 lsl.b   #2,d0                     index and save it
  656.                 move.b  d0,mode+1
  657. music0          move.b  (a0)+,d0                Read next byte
  658. music1          cmp.b   #5,d0                   Second voice?
  659.                 bne     music3                    If not, try third
  660.                 clr.w   mode+2
  661.                 clr.w   stat+2
  662.                 move.b  (a0)+,table+19
  663.                 cmpi.b  #16,table+19
  664.                 blt     music2
  665.                 move.b  table+19,d0
  666.                 sub.b   #15,d0
  667.                 lsl.b   #2,d0
  668.                 move.b  d0,mode+3
  669. music2          move.b  (a0)+,d0
  670. music3          tst.b   d0                      Third voice (9)?
  671.                 beq     music4                    If not, move on
  672.                 clr.w   mode+4
  673.                 clr.w   stat+4
  674.                 move.b  (a0)+,table+21
  675.                 cmpi.b  #16,table+21
  676.                 blt     music4
  677.                 move.b  table+21,d0
  678.                 sub.b   #15,d0
  679.                 lsl.b   #2,d0
  680.                 move.b  d0,mode+5
  681. music4          move.b  (a0)+,d0                Read next byte
  682. music5          lea     table,a1                Set pointer to table
  683.                 cmp.b   #1,d0                   First voice index?
  684.                 bne     music6                    If not, try second
  685.                 ext.w   d0                      Prepare word index
  686.                 move.b  (a0)+,0(a1,d0)          Transfer musical note
  687.                 move.b  (a0)+,2(a1,d0)            (2 bytes) to table
  688.                 move.b  (a0)+,d0                Read next byte
  689.                 cmpi.w  #12,mode                If mode index is 12
  690.                 blt     music6                    or higher (sustain),
  691.                 clr.w   stat                      reset status index
  692. music6          cmp.b   #5,d0                   Second voice?
  693.                 bne     music7                    If not try third
  694.                 ext.w   d0
  695.                 move.b  (a0)+,0(a1,d0)
  696.                 move.b  (a0)+,2(a1,d0)
  697.                 move.b  (a0)+,d0
  698.                 cmpi.w  #12,mode+2
  699.                 blt     music7
  700.                 clr.w   stat+2
  701. music7          tst.b   d0                      Third voice?
  702.                 beq     music8                    If not, move on
  703.                 ext.w   d0
  704.                 move.b  (a0)+,0(a1,d0)
  705.                 move.b  (a0)+,2(a1,d0)
  706.                 cmpi.w  #12,mode+4
  707.                 blt     music8
  708.                 clr.w   stat+4
  709. music8          move.b  (a0)+,count             Set time counter
  710.                 move.l  a0,marker               Save music pointer
  711. music9          lea     modptr,a0               Set mode pointer
  712.                 lea     table+17,a1             Set table pointer
  713.                 lea     stat,a3                 Set status pointer
  714.                 move.w  mode,d0                 Get mode index
  715.                 movea.l 0(a0,d0),a2             Find subroutine 
  716.                 jsr     (a2)                      and jump in
  717.                 lea     table+19,a1             Do same for 2nd voice
  718.                 lea     stat+2,a3
  719.                 move.w  mode+2,d0
  720.                 movea.l 0(a0,d0),a2
  721.                 jsr     (a2)
  722.                 lea     table+21,a1             And for 3rd voice
  723.                 lea     stat+4,a3
  724.                 move.w  mode+4,d0
  725.                 movea.l 0(a0,d0),a2
  726.                 jsr     (a2)
  727.                 movea.l sound,a0                Point to sound slot
  728.                 move.l  pointer,(a0)+           Deposit pointer
  729.                 clr.b   (a0)                      to our sound table
  730. music10         movem.l (a7)+,d0-d0/a0-a3
  731.                 rts
  732. music11         move.l  #tune,marker            Restart from the top
  733.                 move.b  #1,count                  on next vertical blank
  734.                 bra     music10
  735. * * * * * * * * * * * * * * * * * * * * *
  736. *           MUSIC SUBROUTINES           *
  737. * * * * * * * * * * * * * * * * * * * * *
  738. mode0           rts                             Single volume; return
  739. mode1           lea     vbrt,a2                 Point to vibrato data
  740.                 subq.w  #1,(a3)                 Decrement index
  741.                 bpl     mode1a
  742.                 move.w  #9,(a3)                 Reload if minus
  743. mode1a          move.w  (a3),d0                 Get index
  744.                 move.b  0(a2,d0),(a1)           Put volume in table
  745.                 rts
  746. mode2           lea     pzct,a2                 Point to pizzicato data
  747.                 subq.w  #1,(a3)                 Decrement index
  748.                 bpl     mode2a
  749.                 move.w  #5,(a3)                 Reload if minus
  750. mode2a          move.w  (a3),d0                 Get index
  751.                 move.b  0(a2,d0),(a1)           Put volume in table
  752.                 rts
  753. mode3           lea     sstn1,a2                Short sustain data
  754. mode3a          move.w  (a3),d0                 Get index
  755.                 move.b  0(a2,d0),(a1)           Put volume in table
  756.                 tst.b   (a1)
  757.                 beq     mode3b                  Zero marks end of data
  758.                 addq.w  #1,(a3)                 Otherwise advance index
  759. mode3b          rts
  760. mode4           lea     sstn2,a2                Medium sustain
  761.                 bra     mode3a
  762. mode5           lea     sstn3,a2                Long sustain
  763.                 bra     mode3a
  764. * * * * * * * * * * * * * * * * * * * * *
  765. *             PROGRAM  DATA             *
  766. * * * * * * * * * * * * * * * * * * * * *
  767.                 data
  768. colors          dc.w    $000,$703,$740,$470,$607,$557,$446,$334
  769.                 dc.w    $067,$057,$047,$037,$000,$000,$047,$777
  770. fname           dc.b    'saucers.dat',0
  771. xc              dc.w    0,0,0,0,160,128
  772. yc              dc.w    0,18,36,54,52,134
  773. xg              dc.w    0,0,0,0
  774. yg              dc.w    0,18,36,54
  775. hfac            dc.w    2,2,2,2
  776. offsets         dc.w    0,432,864,1296,5808,1728
  777.                 dc.w    0,576,1152,1728
  778. flg             dc.w    $0300,$0300,$0300,$0300
  779. order           dc.w    0,2,4,6,8,10
  780. moon            dc.w    $3e00,$3e00,$3e00,$0000,$7f00,$7f00,$7f00,$0100
  781.                 dc.w    $ff80,$ff80,$ff80,$0180,$ff80,$ff80,$ff80,$0380
  782.                 dc.w    $ff80,$ff80,$ff80,$0780,$7f00,$7f00,$7f00,$0f00
  783.                 dc.w    $3e00,$3c00,$3e00,$3c00
  784. table           dc.b    0,0,1,0,2,0,3,0,4,0,5,0
  785.                 dc.b    6,15,7,56,8,16,9,16,10,16,11,0,12,40,13,9,255,0
  786. quiet           dc.b    7,63,8,0,9,0,10,0,255,0
  787. modptr          dc.l    mode0,mode1,mode2,mode3,mode4,mode5
  788. vbrt            dc.b    11,12,13,14,15,14,13,12,11,10
  789. pzct            dc.b    0,0,0,15,15,15
  790. sstn1           dc.b    13,14,15,15,14,14,13,13,12,12,11,11,10,10,9,9,8,8
  791.                 dc.b    7,7,6,6,5,5,4,4,3,3,2,2,1,1,0
  792. sstn2           dc.b    13,14,14,15,15,15,14,14,14,13,13,13,12,12,12,11,11,11
  793.                 dc.b    10,10,10,9,9,9,8,8,8,7,7,7,6,6,6,5,5,5,4,4,4
  794.                 dc.b    3,3,3,2,2,2,1,1,1,0
  795. sstn3           dc.b    13,14,14,15,15,15,14,14,14,14,14,13,13,13,13,13
  796.                 dc.b    13,13,13,13,13,12,12,12,12,12,12,12,12
  797.                 dc.b    11,11,11,11,11,11,11,11,10,10,10,10,10,10,10,10
  798.                 dc.b    9,9,9,9,9,9,9,9,8,8,8,8,8,8,8,8,7,7,7,7,7,7,7,7
  799.                 dc.b    6,6,6,6,6,6,6,6,5,5,5,5,5,5,5,4,4,4,4,4,4
  800.                 dc.b    3,3,3,3,3,2,2,2,2,1,1,1,0
  801. tune            dc.b    0,1,19,5,16,9,18
  802.                 dc.b    1,0,0,5,0,0,9,188,3,24
  803.                 dc.b    9,252,4,24
  804.                 dc.b    9,188,3,24
  805.                 dc.b    9,252,4,24
  806.                 dc.b    9,188,3,24
  807.                 dc.b    9,252,4,24
  808.                 dc.b    9,112,4,24
  809.                 dc.b    9,244,3,24
  810.                 dc.b    9,244,3,24
  811.                 dc.b    9,152,5,24
  812.                 dc.b    9,244,3,24
  813.                 dc.b    9,152,5,24
  814.                 dc.b    9,244,3,24
  815.                 dc.b    9,152,5,24
  816.                 dc.b    9,252,4,24
  817.                 dc.b    9,112,4,24
  818.                 dc.b    5,63,1,9,188,3,24
  819.                 dc.b    9,252,4,24
  820.                 dc.b    5,222,1,9,188,3,24
  821.                 dc.b    9,252,4,24
  822.                 dc.b    5,63,1,9,188,3,24
  823.                 dc.b    5,102,1,9,252,4,24
  824.                 dc.b    5,123,1,9,112,4,24
  825.                 dc.b    5,170,1,9,244,3,24
  826.                 dc.b    5,102,1,9,244,3,24
  827.                 dc.b    9,152,5,24
  828.                 dc.b    5,250,1,9,244,3,24
  829.                 dc.b    9,152,5,24
  830.                 dc.b    5,102,1,9,244,3,24
  831.                 dc.b    5,123,1,9,152,5,24
  832.                 dc.b    5,170,1,9,252,4,24
  833.                 dc.b    5,222,1,9,112,4,24
  834.                 dc.b    5,63,1,9,188,3,24
  835.                 dc.b    9,252,4,24
  836.                 dc.b    9,188,3,24
  837.                 dc.b    9,252,4,24
  838.                 dc.b    9,188,3,16
  839.                 dc.b    5,123,1,0,8
  840.                 dc.b    5,102,1,9,252,4,8
  841.                 dc.b    5,123,1,0,8
  842.                 dc.b    5,170,1,0,8
  843.                 dc.b    5,222,1,9,112,4,24
  844.                 dc.b    9,244,3,24
  845.                 dc.b    9,188,3,24
  846.                 dc.b    9,252,4,24
  847.                 dc.b    9,188,3,24
  848.                 dc.b    5,0,0,9,252,4,24
  849.                 dc.b    9,188,3,24
  850.                 dc.b    9,252,4,24
  851.                 dc.b    9,112,4,24
  852.                 dc.b    9,244,3,24
  853.                 dc.b    1,159,0,9,188,3,12
  854.                 dc.b    1,190,0,0,12
  855.                 dc.b    1,179,0,9,252,4,12
  856.                 dc.b    1,159,0,0,12
  857.                 dc.b    1,142,0,9,188,3,12
  858.                 dc.b    1,127,0,0,12
  859.                 dc.b    1,119,0,9,252,4,12
  860.                 dc.b    1,159,0,0,12
  861.                 dc.b    1,127,0,9,188,3,12
  862.                 dc.b    1,142,0,0,12
  863.                 dc.b    1,159,0,9,252,4,12
  864.                 dc.b    1,179,0,0,12
  865.                 dc.b    1,142,0,9,112,4,12
  866.                 dc.b    1,159,0,0,12
  867.                 dc.b    1,179,0,9,244,3,12
  868.                 dc.b    1,190,0,0,12
  869.                 dc.b    1,159,0,9,244,3,12
  870.                 dc.b    1,190,0,0,12
  871.                 dc.b    1,179,0,9,152,5,12
  872.                 dc.b    1,159,0,0,12
  873.                 dc.b    1,142,0,9,244,3,12
  874.                 dc.b    1,127,0,0,12
  875.                 dc.b    1,119,0,9,152,5,12
  876.                 dc.b    1,159,0,0,12
  877.                 dc.b    1,127,0,9,244,3,12
  878.                 dc.b    1,142,0,0,12
  879.                 dc.b    1,159,0,9,152,5,12
  880.                 dc.b    1,179,0,0,12
  881.                 dc.b    1,190,0,9,252,4,12
  882.                 dc.b    1,179,0,0,12
  883.                 dc.b    1,142,0,9,112,4,12
  884.                 dc.b    1,127,0,0,12
  885.                 dc.b    0,1,17,0
  886.                 dc.b    1,119,0,9,188,3,24
  887.                 dc.b    1,95,0,9,252,4,24
  888.                 dc.b    1,119,0,9,188,3,24
  889.                 dc.b    1,159,0,9,252,4,24
  890.                 dc.b    1,127,0,9,188,3,24
  891.                 dc.b    1,142,0,9,252,4,24
  892.                 dc.b    1,159,0,9,112,4,24
  893.                 dc.b    1,179,0,9,244,3,24
  894.                 dc.b    1,159,0,9,188,3,24
  895.                 dc.b    1,119,0,9,252,4,24
  896.                 dc.b    1,159,0,9,188,3,24
  897.                 dc.b    1,190,0,9,252,4,24
  898.                 dc.b    1,179,0,9,188,3,24
  899.                 dc.b    1,190,0,9,252,4,24
  900.                 dc.b    1,213,0,9,112,4,24
  901.                 dc.b    1,239,0,9,244,3,24
  902.                 dc.b    0,1,19,0
  903.                 dc.b    1,159,0,5,63,1,9,188,3,12
  904.                 dc.b    1,190,0,0,12
  905.                 dc.b    1,179,0,9,252,4,12
  906.                 dc.b    1,159,0,0,12
  907.                 dc.b    1,142,0,5,222,1,9,188,3,12
  908.                 dc.b    1,127,0,0,12
  909.                 dc.b    1,119,0,9,252,4,12
  910.                 dc.b    1,159,0,0,12
  911.                 dc.b    1,127,0,5,63,1,9,188,3,12
  912.                 dc.b    1,142,0,0,12
  913.                 dc.b    1,159,0,5,102,1,9,252,4,12
  914.                 dc.b    1,179,0,0,12
  915.                 dc.b    1,142,0,5,123,1,9,112,4,12
  916.                 dc.b    1,159,0,0,12
  917.                 dc.b    1,179,0,5,170,1,9,244,3,12
  918.                 dc.b    1,190,0,0,12
  919.                 dc.b    1,159,0,5,102,1,9,244,3,12
  920.                 dc.b    1,190,0,0,12
  921.                 dc.b    1,179,0,9,152,5,12
  922.                 dc.b    1,159,0,0,12
  923.                 dc.b    1,142,0,5,250,1,9,244,3,12
  924.                 dc.b    1,127,0,0,12
  925.                 dc.b    1,119,0,9,152,5,12
  926.                 dc.b    1,159,0,0,12
  927.                 dc.b    1,127,0,5,102,1,9,244,3,12
  928.                 dc.b    1,142,0,0,12
  929.                 dc.b    1,159,0,5,123,1,9,152,5,12
  930.                 dc.b    1,179,0,0,12
  931.                 dc.b    1,190,0,5,170,1,9,252,4,12
  932.                 dc.b    1,179,0,0,12
  933.                 dc.b    1,142,0,5,222,1,9,112,4,12
  934.                 dc.b    1,127,0,0,12
  935.                 dc.b    0,1,17,0
  936.                 dc.b    1,119,0,5,63,1,9,188,3,24
  937.                 dc.b    1,95,0,9,252,4,24
  938.                 dc.b    1,119,0,9,188,3,24
  939.                 dc.b    1,159,0,9,252,4,24
  940.                 dc.b    1,127,0,9,188,3,16
  941.                 dc.b    5,123,1,0,8
  942.                 dc.b    1,142,0,5,102,1,9,252,4,8
  943.                 dc.b    5,123,1,0,8
  944.                 dc.b    5,170,1,0,8
  945.                 dc.b    1,159,0,5,222,1,9,112,4,24
  946.                 dc.b    1,179,0,9,244,3,24
  947.                 dc.b    1,159,0,9,188,3,24
  948.                 dc.b    1,119,0,9,252,4,24
  949.                 dc.b    1,159,0,9,188,3,24
  950.                 dc.b    1,190,0,5,0,0,9,252,4,24
  951.                 dc.b    1,179,0,9,188,3,24
  952.                 dc.b    1,159,0,9,252,4,24
  953.                 dc.b    1,142,0,9,112,4,24
  954.                 dc.b    1,127,0,9,244,3,24
  955.                 dc.b    0,1,15,0
  956.                 dc.b    1,63,1,9,188,3,12
  957.                 dc.b    1,123,1,0,12
  958.                 dc.b    1,102,1,9,252,4,12
  959.                 dc.b    1,63,1,0,12
  960.                 dc.b    1,28,1,9,188,3,12
  961.                 dc.b    1,253,0,0,12
  962.                 dc.b    1,239,0,9,252,4,12
  963.                 dc.b    1,0,0,0,12
  964.                 dc.b    1,239,0,9,188,3,12
  965.                 dc.b    1,63,1,0,12
  966.                 dc.b    1,253,0,9,252,4,12
  967.                 dc.b    1,28,1,0,12
  968.                 dc.b    1,63,1,9,112,4,12
  969.                 dc.b    1,102,1,0,12
  970.                 dc.b    1,123,1,9,244,3,12
  971.                 dc.b    1,0,0,0,12
  972.                 dc.b    1,63,1,9,188,3,12
  973.                 dc.b    1,123,1,0,12
  974.                 dc.b    1,102,1,9,252,4,12
  975.                 dc.b    1,63,1,0,12
  976.                 dc.b    1,28,1,9,188,3,12
  977.                 dc.b    1,253,0,0,12
  978.                 dc.b    1,239,0,9,252,4,12
  979.                 dc.b    1,63,1,0,12
  980.                 dc.b    0,1,20,5,20,0
  981.                 dc.b    1,239,0,5,63,1,9,188,3,24
  982.                 dc.b    1,253,0,5,102,1,9,252,4,24
  983.                 dc.b    1,239,0,5,63,1,9,112,4,24
  984.                 dc.b    9,244,3,24
  985.                 dc.b    0,1,19,5,16,0
  986.                 dc.b    1,159,0,5,63,1,9,188,3,12
  987.                 dc.b    1,190,0,0,12
  988.                 dc.b    1,179,0,9,252,4,12
  989.                 dc.b    1,159,0,0,12
  990.                 dc.b    1,142,0,5,222,1,9,188,3,12
  991.                 dc.b    1,127,0,0,12
  992.                 dc.b    1,119,0,9,252,4,12
  993.                 dc.b    1,159,0,0,12
  994.                 dc.b    1,127,0,5,63,1,9,188,3,12
  995.                 dc.b    1,142,0,0,12
  996.                 dc.b    1,159,0,5,102,1,9,252,4,12
  997.                 dc.b    1,179,0,0,12
  998.                 dc.b    1,142,0,5,123,1,9,112,4,12
  999.                 dc.b    1,159,0,0,12
  1000.                 dc.b    1,179,0,5,170,1,9,244,3,12
  1001.                 dc.b    1,190,0,0,12
  1002.                 dc.b    1,159,0,5,102,1,9,244,3,12
  1003.                 dc.b    1,190,0,0,12
  1004.                 dc.b    1,179,0,9,152,5,12
  1005.                 dc.b    1,159,0,0,12
  1006.                 dc.b    1,142,0,5,250,1,9,244,3,12
  1007.                 dc.b    1,127,0,0,12
  1008.                 dc.b    1,119,0,9,152,5,12
  1009.                 dc.b    1,159,0,0,12
  1010.                 dc.b    1,127,0,5,102,1,9,244,3,12
  1011.                 dc.b    1,142,0,0,12
  1012.                 dc.b    1,159,0,5,123,1,9,152,5,12
  1013.                 dc.b    1,179,0,0,12
  1014.                 dc.b    1,190,0,5,170,1,9,252,4,12
  1015.                 dc.b    1,179,0,0,12
  1016.                 dc.b    1,142,0,5,222,1,9,112,4,12
  1017.                 dc.b    1,127,0,0,12
  1018.                 dc.b    0,1,20,5,20,9,20
  1019.                 dc.b    1,119,0,5,239,0,9,188,3,24
  1020.                 dc.b    0,9,18
  1021.                 dc.b    9,252,4,24
  1022.                 dc.b    9,188,3,24
  1023.                 dc.b    9,252,4,24
  1024.                 dc.b    9,188,3,24
  1025.                 dc.b    9,252,4,24
  1026.                 dc.b    9,112,4,24
  1027.                 dc.b    9,244,3,24
  1028.                 dc.b    9,244,3,24
  1029.                 dc.b    9,152,5,24
  1030.                 dc.b    9,244,3,24
  1031.                 dc.b    9,152,5,24
  1032.                 dc.b    9,244,3,24
  1033.                 dc.b    9,152,5,24
  1034.                 dc.b    9,252,4,24
  1035.                 dc.b    9,112,4,24
  1036.                 dc.b    -1
  1037. nmtxt           dc.b    27,69,27,89,43,51
  1038.                 dc.b    'This program runs in color only.....Sorry.'
  1039.                 dc.b    27,89,45,62,'Press a key to exit.',0,0
  1040.                 even
  1041. * * * * * * * * * * * * * * * * * * * * *
  1042. *       UNINITIALIZED DATA STORAGE      *
  1043. * * * * * * * * * * * * * * * * * * * * *
  1044.                 bss
  1045. rez             ds.w    1
  1046. dcolors         ds.w    16
  1047. handle          ds.l    1
  1048. bgbuf           ds.b    2304
  1049. dscrn           ds.l    1
  1050. vscrn           ds.l    1
  1051. hscrn           ds.l    1
  1052. count           ds.w    2
  1053. pointer         ds.l    1
  1054. marker          ds.l    1
  1055. vbvec           ds.l    1
  1056. sound           ds.l    1
  1057. mode            ds.w    3
  1058. stat            ds.w    3
  1059. buffer          ds.b    16448
  1060.  
  1061.                 end
  1062.